home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / collections / IViewCursor.as < prev    next >
Encoding:
Text File  |  2008-05-21  |  1002 b   |  39 lines

  1. package mx.collections
  2. {
  3.    import flash.events.IEventDispatcher;
  4.    
  5.    public interface IViewCursor extends IEventDispatcher
  6.    {
  7.       function moveNext() : Boolean;
  8.       
  9.       function get view() : ICollectionView;
  10.       
  11.       function insert(param1:Object) : void;
  12.       
  13.       function remove() : Object;
  14.       
  15.       [Bindable("cursorUpdate")]
  16.       function get beforeFirst() : Boolean;
  17.       
  18.       [Bindable("cursorUpdate")]
  19.       function get afterLast() : Boolean;
  20.       
  21.       function findAny(param1:Object) : Boolean;
  22.       
  23.       function movePrevious() : Boolean;
  24.       
  25.       [Bindable("cursorUpdate")]
  26.       function get bookmark() : CursorBookmark;
  27.       
  28.       function findFirst(param1:Object) : Boolean;
  29.       
  30.       function seek(param1:CursorBookmark, param2:int = 0, param3:int = 0) : void;
  31.       
  32.       [Bindable("cursorUpdate")]
  33.       function get current() : Object;
  34.       
  35.       function findLast(param1:Object) : Boolean;
  36.    }
  37. }
  38.  
  39.